{
  "private": true,
  "name": "{{SLUGGED_NAME}}-app",
  "repository": "{{GIT_REMOTE_URL}}",
  "version": "0.0.0",
  "description": "{{TITLE_NAME}}",
  "files": ["public", "package.json", "README.md"],
  "scripts": {
    "bootstrap": "cp -n env.default.js env.js || true",
    "start": "plz serve",
    "storybook": "plz stories",
    "build": "plz build",
    "clean": "plz clean",
    "test": "plz test",
    "test:watch": "plz test --watch",
    "postinstall": "npm run bootstrap",
    "stats": "webpack-bundle-analyzer public/stats.json public",
    "lint": "eslint \"src/**/*.js\"",
    "reformat": "prettier-eslint --write \"src/**/*.js\"",
    "eject": "node ./support/not-react-scripts.js"
  },
  "dependencies": {
    "@babel/runtime-corejs3": "^7.6.2",
    "bluebird": "^3.5.4",
    "core-js": "^3.2.1",
    "invariant": "^2.2.4",
    "prop-types": "15.7.2",
    "react": "16.8.6",
    "react-dom": "16.8.6",
    "react-redux": "^7.0.2",
    "redux": "^4.0.1",
    "redux-persist": "^5.10.0",
    "redux-thunk": "^2.3.0",
    "warning": "^4.0.3"
  },
  "devDependencies": {
    "{{CLI_NAME}}": "{{CLI_VERSION}}",
    "@types/bluebird": "^3.5.27",
    "@types/react": "^16.8.23",
    "@types/react-dom": "^16.8.4",
    "@types/react-redux": "^7.1.1",
    "@types/redux": "^3.6.0",
    "eslint": "^5.16.0",
    "eslint-config-semistandard": "^13.0.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-plugin-promise": "^4.1.1",
    "eslint-plugin-standard": "^4.0.0",
    "eslint-plugin-react": "^7.12.4",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.5",
    "prettier-eslint-cli": "^4.7.1",
    "redux-devtools-extension": "^2.13.8",
    "remote-redux-devtools": "^0.5.16",
    "webpack-bundle-analyzer": "^3.3.2"
  },
  "author": "{{AUTHOR}}",
  "license": "UNLICENSED",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "linters": {
      "**/*.js": ["prettier-eslint --write", "git add", "eslint"]
    }
  },
  "plz": {
    "projectType": "react-app",
    "storybook": {
      "name": "{{TITLE_NAME}}"
    }
  }
}
